Raises a number to a power.
与えられた数値の指数 (累乗、べき乗) 計算を行います。
Result = Expression ^ Exponent
Result = Expression ^ Exponent
Result: Any numerical expression that contains the result of the number raised to a power.
Result: 演算結果を格納する数値表式
Expression: Numerical value that you want to raise to a power.
Expression: 指数計算を行う数値。
Exponent: The value of the power that you want to raise the expression to.
Exponent: 先に与えられた数値を何乗するかを指定する数値 (べき計算の指数)。
Sub Example
Sub Example
Print ( 12.345 ^ 23 )
Print ( 12.345 ^ 23 )
Print Exp ( 23 * Log( 12.345 ) ) REM Raises by forming a logarithm
Print Exp ( 23 * Log( 12.345 ) ) REM 対数計算の掛け算を使った指数計算
End Sub
End Sub